-
Notifications
You must be signed in to change notification settings - Fork 201
feat: Voronovskaja-type formula for the Bézier variant of the Bernstein operators #1444
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
| and $J_{n,n+1}(x) = 0$. | ||
| In the classical case $\alpha = 1$, these operators reduce to the usual Bernstein operators. | ||
| For sufficiently smooth $f$ one has the classical Voronovskaja asymptotic formula |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| For sufficiently smooth $f$ one has the classical Voronovskaja asymptotic formula | |
| For sufficiently smooth $f$, one has the classical Voronovskaja asymptotic formula |
| If the limit exists, determine an explicit expression for it in terms of $f$, $x$, and $\alpha$. | ||
| -/ | ||
|
|
||
| /-! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the syntax for a module doc. For a docstring, you instead need to do
| /-! | |
| /-- |
| /-! | ||
| Cumulative sum `J_{n,k}(x) = ∑_{j=k}^n p_{n,j}(x)` | ||
| -/ | ||
| noncomputable def J (n k : ℕ) (x : ℝ ) : ℝ := |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| noncomputable def J (n k : ℕ) (x : ℝ ) : ℝ := | |
| noncomputable def J (n k : ℕ) (x : ℝ) : ℝ := |
| noncomputable def J (n k : ℕ) (x : ℝ ) : ℝ := | ||
| ∑ j ∈ Finset.Icc k n, Polynomial.eval x (bernsteinPolynomial ℝ n j) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this polynomial have a name in the literature? Do you think you should define it as a polynomial?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess it may be called Bernstein tail polynomial would be suitable. I think it can be defined as a polynomial, should I do it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes please!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changed it to Polynomial in the latest commit
| @[category research solved, AMS 26 40 47] | ||
| theorem voronovskaja_theorem.bernstein_operators | ||
| (f : ℝ → ℝ) (x : ℝ) (hx : x ∈ I) | ||
| (f'' : ℝ := iteratedDerivWithin 2 f I x): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| (f'' : ℝ := iteratedDerivWithin 2 f I x): | |
| (f'' : ℝ := iteratedDerivWithin 2 f I x) : |
|
|
||
| /-! | ||
| Conjecture: Voronovskaja-type formula for Bézier-Bernstein operators | ||
| with shape parameter α ≠ 1. -/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| with shape parameter α ≠ 1. -/ | |
| with shape parameter α ≠ 1. -/ |
| noncomputable def BernsteinTail (n k : ℕ) : Polynomial ℝ := | ||
| ∑ j ∈ Finset.Icc k n, | ||
| bernsteinPolynomial ℝ n j |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| noncomputable def BernsteinTail (n k : ℕ) : Polynomial ℝ := | |
| ∑ j ∈ Finset.Icc k n, | |
| bernsteinPolynomial ℝ n j | |
| noncomputable def bernsteinTail (n k : ℕ) : ℝ[X] := | |
| ∑ j ∈ .Icc k n, bernsteinPolynomial ℝ n j |
| Bézier–type Bernstein operator: | ||
| `(B_{n,α} f)(x) = ∑_{k=0}^n f(k/n) * (J_{n,k}(x)^α - J_{n,k+1}(x)^α)` | ||
| -/ | ||
| noncomputable def BezierBernstein (n : ℕ) (α : ℝ) (f : ℝ → ℝ) (x : ℝ) : ℝ := |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| noncomputable def BezierBernstein (n : ℕ) (α : ℝ) (f : ℝ → ℝ) (x : ℝ) : ℝ := | |
| noncomputable def bezierBernstein (n : ℕ) (α : ℝ) (f : ℝ → ℝ) (x : ℝ) : ℝ := |
| ∑ k ∈ Finset.range (n+1), | ||
| f (k/n) * (((BernsteinTail n k).eval x) ^ α - ((BernsteinTail n k + 1).eval x) ^ α) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| ∑ k ∈ Finset.range (n+1), | |
| f (k/n) * (((BernsteinTail n k).eval x) ^ α - ((BernsteinTail n k + 1).eval x) ^ α) | |
| ∑ k ∈ .range (n+1), | |
| f (k/n) * ((bernsteinTail n k).eval x ^ α - (bernsteinTail n k + 1).eval x ^ α) |
| (f : ℝ → ℝ) (x : ℝ) (hx : x ∈ I) | ||
| (f'' : ℝ := iteratedDerivWithin 2 f I x) : | ||
| Tendsto (fun (n : ℕ) => n • (BezierBernstein n 1 f x - f x)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This doesn't do at all what you think. This is the syntax for a default value. You instead want
| (f : ℝ → ℝ) (x : ℝ) (hx : x ∈ I) | |
| (f'' : ℝ := iteratedDerivWithin 2 f I x) : | |
| Tendsto (fun (n : ℕ) => n • (BezierBernstein n 1 f x - f x)) | |
| (f : ℝ → ℝ) (x : ℝ) (hx : x ∈ I) : | |
| let f'' : ℝ := iteratedDerivWithin 2 f I x | |
| Tendsto (fun (n : ℕ) => n • (BezierBernstein n 1 f x - f x)) |
| theorem voronovskaja_theorem.bezier_bernstein_operators | ||
| (α : ℝ) (hα : α ≠ 1) | ||
| (f : ℝ → ℝ) (x : ℝ) (hx : x ∈ I) | ||
| (f'' : ℝ := iteratedDerivWithin 2 f I x) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here
| This is already in the literature; here we state it. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No need to write this, the tag already contains this info
| This is already in the literature; here we state it. |
| Classical Voronovskaja theorem (α = 1) | ||
| For smooth `f`, the limit: | ||
| n * (B_n f x - f x) → (1/2)*x*(1-x)*f''(x) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you latex this?
|
|
||
| /-- | ||
| Bézier–type Bernstein operator: | ||
| `(B_{n,α} f)(x) = ∑_{k=0}^n f(k/n) * (J_{n,k}(x)^α - J_{n,k+1}(x)^α)` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here
| *References:* | ||
| * [A problem in Constructive theory of functions, Szopol 2010](https://www.math.bas.bg/mathmod/Proceedings_CTF/CTF-2010/files_CTF-2010/Open_problems.pdf?utm_source=perplexity) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you put this at the end of the doc?
This PR attempts to add the problem of Bézier-Bernstein operators from this source
Open problem:$\alpha \neq 1$ , prove the existence of a Voronovskaja-type asymptotic formula and determine the limit
$\lim_{n \to \infty } \sqrt{n} \, \big (B_{ n,\alpha} f(x)-f(x) \big)$ $f$ . Where
For
for suitable smooth functions
where
$J_{n,k}(x)=\sum_{j=k}^{n} \binom{n}{j}x^j(1-x)^{n-j}.$
Questions: Do I need to add the proof of classical case when$\alpha = 1$ .